home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Demos / TrueBASIC Demo / User's Guide / Bubble < prev    next >
Encoding:
Text File  |  1985-10-13  |  196 b   |  10 lines  |  [TEXT/TRUE]

  1. ! Draw circles and ellipses.
  2. !
  3. DO
  4.    GET POINT x1, y1             ! Choose one point
  5.    GET POINT x2, y2             ! Choose another point
  6.    BOX CIRCLE x1, x2, y1, y2    ! Draw circle
  7. LOOP
  8. END
  9.  
  10.